home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / earthlink / nscomm / java40.jar / java / lang / reflect / InvocationTargetException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  569 b   |  22 lines

  1. package java.lang.reflect;
  2.  
  3. public class InvocationTargetException extends Exception {
  4.    private Throwable target;
  5.  
  6.    protected InvocationTargetException() {
  7.    }
  8.  
  9.    public InvocationTargetException(Throwable var1) {
  10.       this.target = var1;
  11.    }
  12.  
  13.    public InvocationTargetException(Throwable var1, String var2) {
  14.       super(var2);
  15.       this.target = var1;
  16.    }
  17.  
  18.    public Throwable getTargetException() {
  19.       return this.target;
  20.    }
  21. }
  22.